home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / checkbox / registries / lsb.py < prev    next >
Text File  |  2009-11-05  |  2KB  |  58 lines

  1. #
  2. # This file is part of Checkbox.
  3. #
  4. # Copyright 2008 Canonical Ltd.
  5. #
  6. # Checkbox is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # Checkbox is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. from checkbox.lib.cache import cache
  20.  
  21. from checkbox.properties import String
  22. from checkbox.registries.command import CommandRegistry
  23.  
  24.  
  25. class LsbRegistry(CommandRegistry):
  26.     """Registry for LSB information.
  27.  
  28.     Each item contained in this registry consists of the information
  29.     returned by the lsb_release command.
  30.     """
  31.  
  32.     # Command to retrieve LSB information.
  33.     command = String(default="lsb_release -a 2>/dev/null")
  34.  
  35.     default_map = {
  36.         "Distributor ID": "distributor_id",
  37.         "Description": "description",
  38.         "Release": "release",
  39.         "Codename": "codename"}
  40.  
  41.     def __init__(self, filename=None, map=None):
  42.         super(LsbRegistry, self).__init__(filename)
  43.         self._map = map or self.default_map
  44.  
  45.     @cache
  46.     def items(self):
  47.         items = []
  48.         for line in [l for l in self.split("\n") if l]:
  49.             (key, value) = line.split(":\t", 1)
  50.             if key in self._map:
  51.                 key = self._map[key]
  52.                 items.append((key, value))
  53.  
  54.         return items
  55.  
  56.  
  57. factory = LsbRegistry
  58.